100
How can I programmatically change the column where incremental searching is performed
With G2antt1
	.Columns.Add "Column 1"
	.Columns.Add "Column 2"
	With .Items
		.CellValue(.AddItem("Item 1"),1) = "SubItem 1"
	End With
	.SearchColumnIndex = 1
End With
99
How do I disable the full-row selection in the control
With G2antt1
	.FullRowSelect = False
	.Columns.Add "Column"
	.Items.AddItem "One"
	.Items.AddItem "Two"
End With
98
Is there any option to specify the height of the items, before adding them
With G2antt1
	.DefaultItemHeight = 32
	.Columns.Add "Column"
	.Items.AddItem "One"
	.Items.AddItem "Two"
End With
97
How do lock / fix some columns to the control, so I can see them all the time, event if I scroll the columns
With G2antt1
	.CountLockedColumns = 1
	.BackColorLock = RGB(240,240,240)
	.ColumnAutoResize = False
	.Columns.Add("Locked").Width = 128
	.Columns.Add("Un-Locked 1").Width = 128
	.Columns.Add("Un-Locked 2").Width = 128
	.Columns.Add("Un-Locked 3").Width = 128
	With .Items
		.CellValue(.AddItem("locked"),1) = "unlocked"
	End With
End With
96
How do I change the control's background / foreground color on the locked area
With G2antt1
	.CountLockedColumns = 1
	.ForeColorLock = RGB(240,240,240)
	.BackColorLock = RGB(128,128,128)
	.ColumnAutoResize = False
	.Columns.Add("Locked").Width = 128
	.Columns.Add("Un-Locked 1").Width = 128
	.Columns.Add("Un-Locked 2").Width = 128
	.Columns.Add("Un-Locked 3").Width = 128
	With .Items
		.CellValue(.AddItem("locked"),1) = "unlocked"
	End With
End With
95
How do I change the control's foreground color
With G2antt1
	.ForeColor = RGB(120,120,120)
	.Columns.Add "Column"
	.Items.AddItem "item"
End With
94
How do I change the control's background color
With G2antt1
	.BackColor = RGB(200,200,200)
End With
93
How do I use my own icons for my radio buttons

With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.RadioImage(0) = 1
	.RadioImage(1) = 2
	.Columns.Add("Radio").Def(1) = True
	With .Items
		.AddItem "Radio 1"
		.CellState(.AddItem("Radio 2"),0) = 1
		.AddItem "Radio 3"
	End With
End With
92
How do I use my own icons for checkbox cells

With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.CheckImage(0) = 1
	.CheckImage(1) = 2
	.Columns.Add("Check").Def(0) = True
	With .Items
		.AddItem "Check 1"
		.CellState(.AddItem("Check 2"),0) = 1
	End With
End With
91
How do I perform my own sorting when user clicks the column's header
With G2antt1
	.SortOnClick = 1
	.Columns.Add "Column"
	.Items.AddItem "Item 1"
	.Items.AddItem "Item 2"
End With
90
How do I disable sorting a specified column when clicking its header
With G2antt1
	.Columns.Add "1"
	.Columns.Add("NoSort").AllowSort = False
End With
89
How do I disable sorting the columns when clicking the control's header
With G2antt1
	.SortOnClick = 0
	.Columns.Add "1"
	.Columns.Add "2"
End With
88
How do I put a picture on the center of the control
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 17
End With
87
How do I resize/stretch a picture on the control's background
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 49
End With
86
How do I put a picture on the control's center right bottom side
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 34
End With
85
How do I put a picture on the control's center left bottom side
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 32
End With
84
How do I put a picture on the control's center top side
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 1
End With
83
How do I put a picture on the control's right top corner
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 2
End With
82
How do I put a picture on the control's left top corner
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	.PictureDisplay = 0
End With
81
How do I put a picture on the control's background
With G2antt1
	.Picture = G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
End With
80
How do I sort descending a column, and put the sorting icon in the column's header
With G2antt1
	.Columns.Add "Column"
	With .Items
		.AddItem "Item 1"
		.AddItem "Item 2"
		.AddItem "Item 3"
	End With
	.Columns.Item(0).SortOrder = 2
End With
79
How do I sort ascending a column, and put the sorting icon in the column's header
With G2antt1
	.Columns.Add "Column"
	With .Items
		.AddItem "Item 3"
		.AddItem "Item 1"
		.AddItem "Item 2"
	End With
	.Columns.Item(0).SortOrder = 1
End With
78
How do I perform my own/custom sort, using my extra numbers
With G2antt1
	.Columns.Add("desc").SortType = 5
	With .Items
		.CellData(.AddItem(0),0) = 2
		.CellData(.AddItem(1),0) = 1
		.CellData(.AddItem(2),0) = 0
		.SortChildren 0,0,False
	End With
End With
77
How do I perform my own/custom sort, using my extra numbers
With G2antt1
	.Columns.Add("desc").SortType = 5
	With .Items
		.CellData(.AddItem(0),0) = 2
		.CellData(.AddItem(1),0) = 1
		.CellData(.AddItem(2),0) = 0
		.SortChildren 0,0,False
	End With
End With
76
By default, the column gets sorted as strings, so how do I sort a column by time only
With G2antt1
	.Columns.Add("desc").SortType = 4
	With .Items
		.AddItem "11:00"
		.AddItem "10:10"
		.AddItem "12:12"
		.SortChildren 0,0,False
	End With
End With
75
By default, the column gets sorted as strings, so how do I sort a column by date and time
With G2antt1
	.Columns.Add("desc").SortType = 3
	With .Items
		.AddItem #1/1/2001 11:00:00 AM#
		.AddItem #1/1/2001 10:10:00 AM#
		.AddItem #1/10/2003#
		.SortChildren 0,0,False
	End With
End With
74
By default, the column gets sorted as strings, so how do I sort a column by dates
With G2antt1
	.Columns.Add("desc").SortType = 2
	With .Items
		.AddItem #1/1/2001#
		.AddItem #1/2/2002#
		.AddItem #1/10/2003#
		.SortChildren 0,0,False
	End With
End With
73
How do I sort a column by numbers
With G2antt1
	.Columns.Add("desc").SortType = 1
	With .Items
		.AddItem 1
		.AddItem 5
		.AddItem 10
		.SortChildren 0,0,False
	End With
End With
72
How do I hide the control's header bar
With G2antt1
	.HeaderVisible = False
End With
71
How do change the visual appearance for the control's header bar, using EBN

With G2antt1
	.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
	.BackColorHeader = &H1000000
End With
70
How do I remove the control's border
With G2antt1
	.Appearance = 0
End With
69
I have a hierarchy and I need to filter only root items that match, with thier childs

With G2antt1
	.LinesAtRoot = -1
	.FilterInclude = 3
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 240
		.Filter = "R1"
	End With
	With .Items
		h = .AddItem("R1")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
		.ExpandItem(h) = True
		h = .AddItem("R2")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
	End With
	.ApplyFilter 
End With
68
I have a hierarchy and I need to filter only root items that match, without thier childs

With G2antt1
	.LinesAtRoot = -1
	.FilterInclude = 2
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 240
		.Filter = "R1"
	End With
	With .Items
		h = .AddItem("R1")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
		.ExpandItem(h) = True
		h = .AddItem("R2")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
	End With
	.ApplyFilter 
End With
67
I have a hierarchy and I need to filter only parent items that match, including thier childs

With G2antt1
	.LinesAtRoot = -1
	.FilterInclude = 1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 240
		.Filter = "R1"
	End With
	With .Items
		h = .AddItem("R1")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
		.ExpandItem(h) = True
		h = .AddItem("R2")
		.InsertItem h,,"C1"
		.InsertItem h,,"C2"
	End With
	.ApplyFilter 
End With
66
How can I get ride/hide of the "Filter For" field
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterPattern = False
	End With
End With
65
Is there any way to get listed only visible items in the drop down filter window
With G2antt1
	.LinesAtRoot = -1
	.Description(0) = ""
	.Description(1) = ""
	.Description(2) = ""
	With .Columns.Add("P1")
		.DisplayFilterButton = True
		.DisplayFilterPattern = False
		.FilterList = 1
	End With
	With .Columns.Add("P2")
		.DisplayFilterButton = True
		.DisplayFilterPattern = False
	End With
	With .Items
		h = .AddItem("R1")
		.CellValue(h,1) = "R2"
		.CellValue(.InsertItem(h,,"Cell 1.1"),1) = "Cell 1.2"
		.CellValue(.InsertItem(h,,"Cell 2.1"),1) = "Cell 2.2"
	End With
End With
64
How do I filter for items that match exactly the specified string
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 240
		.Filter = "Item 1"
	End With
	.Items.AddItem "Item 1"
	.Items.AddItem "Item 2"
	.Items.AddItem "Item 3"
	.ApplyFilter 
End With
63
How can I can I programmatically filter for items with a specified icon assigned
With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 10
		.Filter = 1
	End With
	With .Items
		.CellImage(.AddItem("Image 1"),0) = 1
		.CellImage(.AddItem("Image 1"),0) = 1
		.CellImage(.AddItem("Image 2"),0) = 2
		.CellImage(.AddItem("Image 3"),0) = 3
	End With
	.ApplyFilter 
End With
62
How can I can I programmatically filter the checked items
With G2antt1
	With .Columns.Add("Column")
		.Def(0) = True
		.DisplayFilterButton = True
		.FilterType = 6
		.Filter = 0
	End With
	.Items.AddItem 0
	With .Items
		.CellState(.AddItem(1),0) = 1
	End With
	.Items.AddItem 2
	.ApplyFilter 
End With
61
How can I can I filter programmatically the items based on some numerichal rules
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 5
		.Filter = "> 0 <= 1"
	End With
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
	.ApplyFilter 
End With
60
How can I can I filter programmatically the items based on a range/interval of dates

With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
		.FilterType = 4
		.Filter = "1/1/2001 to 1/1/2002"
	End With
	.Items.AddItem #1/1/2001#
	.Items.AddItem #2/1/2002#
	.ApplyFilter 
End With
59
How can I can I filter programmatically given a specified pattern using wild characters like * or
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 3
		.Filter = "0*"
	End With
	.Items.AddItem 0
	.Items.AddItem "00"
	.Items.AddItem 1
	.Items.AddItem "11"
	.ApplyFilter 
End With
58
How can I can I select programmatically "Blanks/NonBlanks" option in the column's drop down filter
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	.ApplyFilter 
End With
57
How can I display the column's filter
With G2antt1
	.Columns.Add("").DisplayFilterButton = True
End With
56
How can I show only the vertical scroll bar
With G2antt1
	.ColumnAutoResize = True
	.ScrollBars = 10
	.Columns.Add 1
	.Columns.Add 2
End With
55
How can I show the control's grid lines only for added/visible items
With G2antt1
	.MarkSearchColumn = False
	.DrawGridLines = -2
	.Columns.Add "Column 1"
	.Columns.Add "Column 2"
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
End With
54
Can I hide the hierarchy lines

With G2antt1
	.LinesAtRoot = 1
	.HasLines = 0
	.Columns.Add "Column"
	With .Items
		h = .AddItem("Root 1")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
		h = .AddItem("Root 2")
		.InsertItem h,,"Child"
	End With
End With
53
Can I change the style or type for the hierarchy lines

With G2antt1
	.LinesAtRoot = 1
	.HasLines = 2
	.Columns.Add "Column"
	With .Items
		h = .AddItem("Root 1")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
		h = .AddItem("Root 2")
		.InsertItem h,,"Child"
	End With
End With
52
Can I use my own icons for the +/- ( expand/collapse ) buttons

With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.LinesAtRoot = 1
	.HasButtons = 4
	.HasButtonsCustom(0) = 1
	.HasButtonsCustom(1) = 2
	.Columns.Add "Column"
	With .Items
		h = .AddItem("Root 1")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
		h = .AddItem("Root 2")
		.InsertItem h,,"Child"
	End With
End With
51
How do I change visual appearance of the +/- ( expand/collapse ) buttons

With G2antt1
	.LinesAtRoot = 1
	.HasButtons = 3
	.Columns.Add "Column"
	With .Items
		h = .AddItem("Root 1")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
		h = .AddItem("Root 2")
		.InsertItem h,,"Child"
	End With
End With
50
How can I change the "IsChecked/IsUnchecked" caption in the control's filter bar, when I filter for checked items
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 6
		.Filter = 0
	End With
	.Description(21) = "Check_On"
	.Description(22) = "Check_Off"
	.ApplyFilter 
End With
49
How can I change the "Checked" caption in the drop down filter window, when I filter for checked items
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 6
	End With
	.Description(19) = "with check on"
	.Description(20) = "with check off"
End With
48
How can I change the name of the week days in the drop down calendar window, being displayed when I filter items between dates
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.Description(18) = "Du Lu Ma Mi Jo Vi Si"
	.ApplyFilter 
End With
47
How can I change the name of the months in the drop down calendar window, being displayed when I filter items between dates
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.Description(17) = "Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre"
	.ApplyFilter 
End With
46
Can I change the "Today" caption being displayed in the drop down calendar, when I filter for dates
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.Description(16) = "Azi"
	.ApplyFilter 
End With
45
The drop down filter window displays a "to" string between two datem when I filter dates. Can I change that
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.Description(13) = "->"
	.ApplyFilter 
End With
44
How can I filter the items that are between an interval/range of dates
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.ApplyFilter 
End With
43
Can I change the "Date:" caption when the column's drop down filter window is shown
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.DisplayFilterDate = True
	End With
	.Description(12) = "Range"
	.ApplyFilter 
End With
42
Can I filter for values using OR - NOT , instead AND operator
With G2antt1
	With .Columns.Add("Column 1")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	With .Columns.Add("Column 2")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	With .Columns.Add("Column 3")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	.FilterCriteria = "%0 or not %1 and %2"
	.ApplyFilter 
End With
41
Can I change the NOT string in the filter bar
With G2antt1
	With .Columns.Add("Column 1")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	With .Columns.Add("Column 2")
		.DisplayFilterButton = True
		.FilterType = 2
	End With
	.FilterCriteria = "not %0 or %1"
	.Description(24) = " ! "
	.Description(10) = " ! IsBlank"
	.ApplyFilter 
End With
40
Can I change the OR string in the filter bar
With G2antt1
	With .Columns.Add("Column 1")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	With .Columns.Add("Column 2")
		.DisplayFilterButton = True
		.FilterType = 2
	End With
	.FilterCriteria = "%0 or %1"
	.Description(23) = " | "
	.ApplyFilter 
End With
39
Can I change the AND string in the filter bar
With G2antt1
	With .Columns.Add("Column 1")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	With .Columns.Add("Column 2")
		.DisplayFilterButton = True
		.FilterType = 2
	End With
	.Description(11) = " & "
	.ApplyFilter 
End With
38
The "IsBlank" caption shown in the control's filterbar when I select "Blanks" or "NonBlanks" items in the column's drop down filter window
With G2antt1
	With .Columns.Add("Column")
		.DisplayFilterButton = True
		.FilterType = 1
	End With
	.Description(9) = "Is Empty"
	.Description(10) = "Is Not Empty"
	.ApplyFilter 
End With
37
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window
With G2antt1
	.Columns.Add("Column").DisplayFilterButton = True
	.Description(4) = ""
	.Description(5) = ""
	.Description(6) = ""
	.Description(7) = ""
	.Description(8) = ""
	.Description(14) = ""
	.Description(15) = ""
End With
36
How can I change the "Filter For" caption in the column's drop down filter window
With G2antt1
	.Columns.Add("Column").DisplayFilterButton = True
	.Description(3) = "new caption"
End With
35
Can I remove the "All", "Blanks" and "NonBlanks" items in the drop down filter window
With G2antt1
	.Columns.Add("Column").DisplayFilterButton = True
	.Description(0) = ""
	.Description(1) = ""
	.Description(2) = ""
End With
34
How do I change the "All", "Blanks" or/and "NonBlanks" caption in the drop down filter window
With G2antt1
	.Columns.Add("Column").DisplayFilterButton = True
	.Description(0) = "new name for (All)"
End With
33
How can I change the position of the column
With G2antt1
	.Columns.Add "Column 1"
	.Columns.Add("Column 2").Position = 0
End With
32
Can I make strikeout the column's header
With G2antt1
	.Columns.Add("Column 1").HeaderStrikeOut = True
End With
31
How can I apply an strikeout font only a portion of the column's header
With G2antt1
	.Columns.Add("Column 1").HTMLCaption = "<s>Col</s>umn 1"
End With
30
How can I get underlined only a portion of column's header
With G2antt1
	.Columns.Add("Column 1").HTMLCaption = "<u>Col</u>umn 1"
End With
29
How can I underline the column's header
With G2antt1
	.Columns.Add("Column 1").HeaderUnderline = True
End With
28
How can I apply an italic font only a portion of the column's header
With G2antt1
	.Columns.Add("Column 1").HTMLCaption = "<i>Col</i>umn 1"
End With
27
Is there any option to make italic the column's header
With G2antt1
	.Columns.Add("Column 1").HeaderItalic = True
End With
26
How can I bold only a portion of the column's header
With G2antt1
	.Columns.Add("Column 1").HTMLCaption = "<b>Col</b>umn 1"
End With
25
Is there any option to bold the column's header
With G2antt1
	.Columns.Add("Column 1").HeaderBold = True
End With
24
Why child items are not shown
With G2antt1
	.LinesAtRoot = -1
	.Columns.Add "Column 1"
	With .Items
		h = .AddItem("Root")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
	End With
End With
23
Does your control support partial-check ( three states ) feature for each column

With G2antt1
	.LinesAtRoot = -1
	With .Columns.Add("P1")
		.Def(0) = True
		.PartialCheck = True
	End With
	With .Columns.Add("P2")
		.Def(0) = True
		.PartialCheck = True
	End With
	With .Items
		h = .AddItem("Root")
		.InsertItem h,,"Child 1"
		.InsertItem h,,"Child 2"
		.ExpandItem(h) = True
	End With
End With
22
Is there any option to change the color for the grid lines
With G2antt1
	.Columns.Add ""
	.DrawGridLines = -1
	.GridLineColor = RGB(255,0,0)
End With
21
Can I change the font to display the column's header
With G2antt1
	.HeaderHeight = 34
	.Columns.Add("Column 1").HTMLCaption = "<font Tahoma;14>Column</font> 1"
End With
20
Can I change the height of the header bar
With G2antt1
	.HeaderHeight = 32
End With
19
Can I display multiple icons to the column's header
With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Columns.Add("Column 1").HTMLCaption = "1<img>1</img> 2 <img>2</img>..."
End With
18
How can I draw grid lines only for visible items
With G2antt1
	.MarkSearchColumn = False
	.DrawGridLines = -2
	.Columns.Add "Column 1"
	.Columns.Add "Column 2"
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
End With
17
How can I show the control's grid lines
With G2antt1
	.MarkSearchColumn = False
	.DrawGridLines = -1
	.Columns.Add "Column 1"
	.Columns.Add "Column 2"
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
End With
16
How can I assign a different background color for the entire column

With G2antt1
	.MarkSearchColumn = False
	.Background(32) = -1
	With .Columns.Add("Column 1")
		.Def(4) = 255
		.Def(7) = 255
	End With
	.Columns.Add "Column 2"
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
End With
15
How can I assign a check box for a cell
With G2antt1
	.Columns.Add "Column 1"
	With .Items
		.AddItem 0
		.CellHasCheckBox(.AddItem(1),0) = True
		.AddItem 2
	End With
End With
14
How can I assign checkboxes for the entire column

With G2antt1
	.Columns.Add("Column 1").Def(0) = True
	.Items.AddItem 0
	.Items.AddItem 1
	.Items.AddItem 2
End With
13
How can I show both scrollbars
With G2antt1
	.ScrollBars = 15
End With
12
How can I change the column's width
With G2antt1
	.ColumnAutoResize = False
	.Columns.Add("Column 1").Width = 64
	.Columns.Add("Column 2").Width = 128
End With
11
How can I show or hide a column
With G2antt1
	.Columns.Add("Hidden").Visible = False
End With
10
How can I hide the searching column
With G2antt1
	.MarkSearchColumn = False
	.Columns.Add "Column 1"
	.Columns.Add "Column 2"
	.Items.AddItem 
End With
9
Can I disable sorting a column, when the user clicks the column's header, or drag it to the sort bar
With G2antt1
	.Columns.Add("Unsortable").AllowSort = False
	.Columns.Add "Sortable"
End With
8
Is there any option to align the header to the left and the data to the right
With G2antt1
	.Columns.Add("Left").Alignment = 0
	With .Columns.Add("Right")
		.Alignment = 2
		.HeaderAlignment = 2
	End With
	With .Items
		.CellValue(.AddItem("left"),1) = "right"
	End With
End With
7
Can I displays a custom size picture to column's header
With G2antt1
	.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
	.HeaderHeight = 48
	.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> Column <img>pic1</img> Picture"
End With
6
How can I insert an icon to column's header

With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> Column <img>1</img> Icon"
End With
5
How can I insert an icon to column's header

With G2antt1
	.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Columns.Add("ColumnName").HeaderImage = 1
End With
4
How can I use HTML format in column's header
With G2antt1
	.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> <fgcolor=0000FF>Col</fgcolor>umn"
End With
3
How can I change/rename the column's name
With G2antt1
	.Columns.Add("ColumnName").Caption = "NewName"
End With
2
How can I add multiple columns
With G2antt1
	With .Columns
		.Add "Column 1"
		.Add "Column 2"
	End With
End With
1
How can I add a new column
With G2antt1
	.Columns.Add "caption"
End With